home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Utilities / Workspace / Locus / Source / ItemList.h < prev    next >
Text File  |  1995-06-12  |  919b  |  47 lines

  1.  
  2. /*
  3.     Copyright 1993  Jeremy Slade.
  4.  
  5.     You are free to use all or any parts of the Locus project
  6.     however you wish, just give credit where credit is due.
  7.     The author (Jeremy Slade) shall not be held responsible
  8.     for any damages that result out of use or misuse of any
  9.     part of this project.
  10.  
  11. */
  12.  
  13. /*
  14.     Project: Locus
  15.  
  16.     File: ItemList.h
  17.  
  18.     Description:
  19.  
  20.     ItemList is a subclass of List that is intended to hold ItemCells only.  Its sole purpose (currently) is to distinguish a list of ItemCells from a Group, which is also a List subclass and also contains ItemCells.  This isn't really necessary, but it makes things a little bit clearer.
  21.     
  22.     Original Author: Jeremy Slade
  23.  
  24.     Revision History:
  25.         Created
  26.             V.101    JGS    Fri Mar  5 23:11:50 GMT-0700 1993
  27.  
  28. */
  29.  
  30. #ifndef ItemList_h
  31. #define ItemList_h
  32.  
  33. #define ItemList_VERSION        (101)
  34.  
  35. #import <objc/List.h>
  36.  
  37.  
  38. @interface ItemList : List
  39. {
  40. }
  41.  
  42. + initialize;
  43.  
  44. @end
  45.  
  46. #endif // ItemList_h
  47.